import pandas as pd
from datetime import datetime, date
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
ca = pd.read_csv("Customer Address 1.csv")
ca.head()
| customer_id | address | postcode | state | country | property_valuation | |
|---|---|---|---|---|---|---|
| 0 | 1 | 060 Morning Avenue | 2016 | New South Wales | Australia | 10 |
| 1 | 2 | 6 Meadow Vale Court | 2153 | New South Wales | Australia | 10 |
| 2 | 4 | 0 Holy Cross Court | 4211 | QLD | Australia | 9 |
| 3 | 5 | 17979 Del Mar Point | 2448 | New South Wales | Australia | 4 |
| 4 | 6 | 9 Oakridge Court | 3216 | VIC | Australia | 9 |
ca.tail()
| customer_id | address | postcode | state | country | property_valuation | |
|---|---|---|---|---|---|---|
| 3994 | 3999 | 1482 Hauk Trail | 3064 | VIC | Australia | 3 |
| 3995 | 4000 | 57042 Village Green Point | 4511 | QLD | Australia | 6 |
| 3996 | 4001 | 87 Crescent Oaks Alley | 2756 | NSW | Australia | 10 |
| 3997 | 4002 | 8194 Lien Street | 4032 | QLD | Australia | 7 |
| 3998 | 4003 | 320 Acker Drive | 2251 | NSW | Australia | 7 |
ca.describe()
| customer_id | postcode | property_valuation | |
|---|---|---|---|
| count | 3999.000000 | 3999.000000 | 3999.000000 |
| mean | 2003.987997 | 2985.755939 | 7.514379 |
| std | 1154.576912 | 844.878364 | 2.824663 |
| min | 1.000000 | 2000.000000 | 1.000000 |
| 25% | 1004.500000 | 2200.000000 | 6.000000 |
| 50% | 2004.000000 | 2768.000000 | 8.000000 |
| 75% | 3003.500000 | 3750.000000 | 10.000000 |
| max | 4003.000000 | 4883.000000 | 12.000000 |
ca.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3999 entries, 0 to 3998 Data columns (total 6 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 customer_id 3999 non-null int64 1 address 3999 non-null object 2 postcode 3999 non-null int64 3 state 3999 non-null object 4 country 3999 non-null object 5 property_valuation 3999 non-null int64 dtypes: int64(3), object(3) memory usage: 187.6+ KB
ca.shape
(3999, 6)
ca.columns
Index(['customer_id', 'address', 'postcode', 'state', 'country',
'property_valuation'],
dtype='object')
ca.duplicated().sum()
0
ca.isnull().sum()
customer_id 0 address 0 postcode 0 state 0 country 0 property_valuation 0 dtype: int64
ca
| customer_id | address | postcode | state | country | property_valuation | |
|---|---|---|---|---|---|---|
| 0 | 1 | 060 Morning Avenue | 2016 | New South Wales | Australia | 10 |
| 1 | 2 | 6 Meadow Vale Court | 2153 | New South Wales | Australia | 10 |
| 2 | 4 | 0 Holy Cross Court | 4211 | QLD | Australia | 9 |
| 3 | 5 | 17979 Del Mar Point | 2448 | New South Wales | Australia | 4 |
| 4 | 6 | 9 Oakridge Court | 3216 | VIC | Australia | 9 |
| ... | ... | ... | ... | ... | ... | ... |
| 3994 | 3999 | 1482 Hauk Trail | 3064 | VIC | Australia | 3 |
| 3995 | 4000 | 57042 Village Green Point | 4511 | QLD | Australia | 6 |
| 3996 | 4001 | 87 Crescent Oaks Alley | 2756 | NSW | Australia | 10 |
| 3997 | 4002 | 8194 Lien Street | 4032 | QLD | Australia | 7 |
| 3998 | 4003 | 320 Acker Drive | 2251 | NSW | Australia | 7 |
3999 rows × 6 columns
del(ca['country'])
ca.columns
Index(['customer_id', 'address', 'postcode', 'state', 'property_valuation'], dtype='object')
ca.address
0 060 Morning Avenue
1 6 Meadow Vale Court
2 0 Holy Cross Court
3 17979 Del Mar Point
4 9 Oakridge Court
...
3994 1482 Hauk Trail
3995 57042 Village Green Point
3996 87 Crescent Oaks Alley
3997 8194 Lien Street
3998 320 Acker Drive
Name: address, Length: 3999, dtype: object
ca['street'] =" "
ca
| customer_id | address | postcode | state | property_valuation | street | |
|---|---|---|---|---|---|---|
| 0 | 1 | 060 Morning Avenue | 2016 | New South Wales | 10 | |
| 1 | 2 | 6 Meadow Vale Court | 2153 | New South Wales | 10 | |
| 2 | 4 | 0 Holy Cross Court | 4211 | QLD | 9 | |
| 3 | 5 | 17979 Del Mar Point | 2448 | New South Wales | 4 | |
| 4 | 6 | 9 Oakridge Court | 3216 | VIC | 9 | |
| ... | ... | ... | ... | ... | ... | ... |
| 3994 | 3999 | 1482 Hauk Trail | 3064 | VIC | 3 | |
| 3995 | 4000 | 57042 Village Green Point | 4511 | QLD | 6 | |
| 3996 | 4001 | 87 Crescent Oaks Alley | 2756 | NSW | 10 | |
| 3997 | 4002 | 8194 Lien Street | 4032 | QLD | 7 | |
| 3998 | 4003 | 320 Acker Drive | 2251 | NSW | 7 |
3999 rows × 6 columns
j = 0
for i in ca['address']:
print(i)
data = i.split(' ', 1)
ca['address'][j] = data[0]
ca['street'][j] = data[1]
print(ca)
j = j + 1
060 Morning Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 Meadow Vale Court 2153 New South Wales
2 4 0 Holy Cross Court 4211 QLD
3 5 17979 Del Mar Point 2448 New South Wales
4 6 9 Oakridge Court 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10
2 9
3 4
4 9
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Meadow Vale Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 Holy Cross Court 4211 QLD
3 5 17979 Del Mar Point 2448 New South Wales
4 6 9 Oakridge Court 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9
3 4
4 9
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Holy Cross Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 Del Mar Point 2448 New South Wales
4 6 9 Oakridge Court 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4
4 9
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17979 Del Mar Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 Oakridge Court 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Oakridge Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Delaware Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Londonderry Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97736 7th Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93405 Ludington Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44339 Golden Leaf Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Sutherland Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Mcbride Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9861 New Castle Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52 Moland Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82391 Kensington Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
092 2nd Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Spaight Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
032 Bartelt Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Jenna Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Cordelia Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28 5th Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52 Carey Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Texas Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Eagan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Buell Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02663 Buell Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2294 Pleasure Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2951 Petterle Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63 Lukken Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
833 Luster Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Russell Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Del Sol Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Sage Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 Lawn Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38726 Ilene Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3496 Brown Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7188 Cody Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Claremont Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Eagan Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89314 Eagle Crest Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2028 Lakewood Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70875 Hudson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
543 Killdeer Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22125 Ramsey Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3107 Calypso Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
957 Veith Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4853 Gulseth Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Michigan Terrace
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Steensland Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Homewood Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Almo Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
690 Glacier Hill Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89787 Village Green Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Elgar Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
413 Mayer Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39 3rd Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44516 Katie Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Schurz Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68150 Boyd Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11474 Westend Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
308 Jana Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
163 Straubel Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68294 Clarendon Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
486 Mariners Cove Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0322 Dryden Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Bonner Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07041 Briar Crest Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29466 Hanson Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0212 Forest Run Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33055 Menomonie Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4763 Merchant Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
439 Ridgeway Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Clyde Gallagher Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97455 Loeprich Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9527 Ridgeway Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Jackson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
74 Anniversary Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2083 Spaight Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2796 Caliangt Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96061 Ludington Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5037 Merchant Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
289 Haas Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4423 Bartelt Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Grim Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73042 Roth Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
171 Fordem Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2640 Manley Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Hintze Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Mcbride Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67234 Transport Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Dorton Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Heffernan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6088 Roxbury Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
105 Shelley Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
079 Merry Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8722 Summit Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9554 Artisan Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55850 Butterfield Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68 Little Fleur Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85688 New Castle Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8611 Loomis Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7909 Pierstorff Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Muir Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0410 Division Junction
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Service Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Moose Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7342 Fieldstone Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 David Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15239 Northwestern Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Oneill Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8194 Sachtjen Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0349 Farmco Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
185 Pennsylvania Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
432 Longview Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5814 Bunker Hill Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Carberry Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Talisman Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Prairie Rose Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Florence Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
739 Elmside Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
684 Northport Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Hagan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Pearson Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10918 Merry Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97 Coolidge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Helena Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
352 Forster Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12306 Lawn Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19392 7th Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1605 Northfield Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9674 Graceland Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
638 Thackeray Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
869 Forster Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Golden Leaf Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
215 Lindbergh Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
829 Washington Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
585 Loomis Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68063 Blue Bill Park Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15673 Farmco Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Oxford Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7245 Cottonwood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20382 Spohn Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12375 Cambridge Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 Granby Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
939 Coleman Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69914 Bowman Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34457 Springview Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
992 Old Shore Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
453 Sheridan Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Mccormick Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63344 Holmberg Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Huxley Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Hazelcrest Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Continental Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Duke Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
860 Hintze Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3723 Bunker Hill Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Corry Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65105 Sommers Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2054 Sommers Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22371 Miller Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35807 Oneill Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75612 Clarendon Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Golf View Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Iowa Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Cascade Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13950 Jackson Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35386 Mockingbird Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Randy Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6898 Redwing Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52273 Bay Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
272 Montana Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82520 Mifflin Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Dixon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Dayton Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
216 Barnett Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8256 Annamark Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83012 Dapin Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Haas Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 Meadow Ridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3567 Northfield Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0059 Brentwood Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0274 Oneill Alley
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4179 Carioca Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59265 Sullivan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Warbler Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Buell Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Bay Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10878 Waywood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
362 Mayer Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Upham Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Superior Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8890 Golden Leaf Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5484 Hagan Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7451 Jana Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Havey Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Steensland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
107 Elmside Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Gina Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Londonderry Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39716 Vera Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
183 Ronald Regan Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Thierer Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
056 Stone Corner Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
528 Mandrake Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19969 5th Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Rockefeller Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
417 Transport Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6327 Lunder Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
811 Tony Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Northport Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
231 Havey Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
603 Kenwood Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09040 Myrtle Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05241 Shelley Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Pankratz Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51 Crescent Oaks Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Emmet Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Surrey Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6236 Summerview Terrace
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
682 Sheridan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04139 Delladonna Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Scott Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92253 Kensington Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Westend Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 5th Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11667 Blackbird Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Sommers Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Northridge Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
816 Spohn Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Service Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Morning Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4263 Hanson Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6159 Katie Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Eliot Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Westend Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39988 Porter Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0796 Melody Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2914 Vahlen Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65 Kinsman Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07227 Hoard Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25503 Evergreen Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 2nd Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
122 Melrose Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37024 Anniversary Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91141 Huxley Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Fallview Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8029 Gulseth Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77248 Columbus Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0850 Schmedeman Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
131 Northfield Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5130 Manley Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
879 Coolidge Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6759 Nevada Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8208 Parkside Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Straubel Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Eastlawn Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42067 Duke Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 Everett Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
454 Green Ridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19220 Evergreen Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
109 Tomscot Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Arizona Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Lyons Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Jana Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90173 Oneill Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6262 Elgar Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5668 Corscot Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Texas Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32062 Oak Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07158 Roth Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
370 Portage Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19795 Bultman Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Corscot Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Kim Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Starling Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36 Vidon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Riverside Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28604 Bellgrove Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Cottonwood Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Parkside Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
747 Thackeray Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5583 Prairie Rose Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
071 Cardinal Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7169 North Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6923 Tennessee Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8207 Cascade Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Brentwood Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 5th Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
807 Beilfuss Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Graedel Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29886 Crownhardt Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Drewry Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Brickson Park Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Almo Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Golf View Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6170 Buena Vista Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Orin Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20924 Banding Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91193 Petterle Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01459 Fremont Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Spenser Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Lawn Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5982 Mosinee Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37006 Hoard Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Corry Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
099 Nova Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
252 Mockingbird Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
990 Kensington Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
706 Anniversary Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52 Corben Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4270 Loeprich Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Clyde Gallagher Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
671 American Ash Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 American Ash Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1108 Nevada Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Spaight Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Schurz Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 8th Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Lawn Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Coolidge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Graceland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8717 Mandrake Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Thierer Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19507 Red Cloud Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Golf Course Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
042 Bunker Hill Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45793 Nancy Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
314 Northland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3093 Mockingbird Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Mcbride Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24044 Bonner Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Rowland Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Arapahoe Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7905 Spaight Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Grayhawk Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Lyons Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72419 Eagan Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6860 Green Ridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Straubel Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Ronald Regan Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44621 Linden Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Moulton Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7633 Mayer Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Westerfield Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1826 Hazelcrest Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Sutteridge Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Sunbrook Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
143 Elka Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0293 Porter Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7447 Nevada Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Park Meadow Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
780 Carberry Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5337 Dennis Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Debs Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
708 Russell Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66286 Homewood Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8728 Express Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93583 Moland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18264 Maryland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
411 Homewood Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Mariners Cove Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
279 Jenna Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
382 Maywood Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6085 Petterle Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06324 Michigan Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92808 Mallard Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
841 Anderson Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67884 Fair Oaks Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1823 Judy Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
953 Eliot Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90761 Shasta Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
259 Barnett Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Brown Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3467 Prairie Rose Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Scoville Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
010 Namekagon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99826 Steensland Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28809 Mesta Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
201 Randy Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58211 Surrey Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
720 Menomonie Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4604 Cordelia Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3788 Service Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Holy Cross Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
740 Calypso Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9457 Arizona Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Bartillon Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Reinke Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7343 Washington Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Valley Edge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Farragut Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Florence Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
095 Prairieview Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47226 Algoma Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
564 Northview Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5359 Alpine Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
586 Miller Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32571 Dixon Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
333 Bunting Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Red Cloud Street
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07 New Castle Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78152 Harper Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
981 West Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Monterey Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Graceland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41605 Mitchell Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Upham Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 Sunfield Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84549 Jenifer Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5449 Jenna Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 Butternut Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7427 Fuller Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
713 Eastwood Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7526 Artisan Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Oriole Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
690 Hanson Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
509 Fisk Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Petterle Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Annamark Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
311 Dapin Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15082 Crest Line Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Carey Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Moland Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25386 Fallview Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8078 Talisman Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6920 Dwight Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Lukken Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Graceland Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
155 Basil Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4284 Surrey Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Almo Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Porter Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
007 Gerald Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8788 Armistice Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1693 Artisan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
532 Emmet Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Sutteridge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25522 Mosinee Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
421 Bobwhite Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Ronald Regan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Loomis Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Jana Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
528 Buell Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
261 Northport Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Scott Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8385 Lien Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24919 Artisan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37093 Manitowish Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Monterey Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Mariners Cove Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
572 Gerald Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Farmco Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19964 Nancy Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Columbus Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
455 Hooker Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0777 Farwell Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23 Glacier Hill Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8750 Lakewood Gardens Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0619 Dorton Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3469 Service Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Dahle Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Dayton Park
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
091 Farragut Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70488 Logan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Golf Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
663 Bellgrove Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9907 Morningstar Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 South Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Eagle Crest Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
781 Dorton Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Dwight Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6674 Russell Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84041 Holy Cross Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
340 Northview Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
74011 Manufacturers Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30991 Macpherson Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40504 Tennyson Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76369 Ridge Oak Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51188 Annamark Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00976 Sundown Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87 Stone Corner Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Westridge Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4671 Buell Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3743 Melody Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8670 Pine View Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Twin Pines Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11731 3rd Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
411 Lien Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
431 Ilene Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Pond Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61293 Delladonna Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6390 Truax Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
470 Bunting Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02 Boyd Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2639 Brown Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0897 Little Fleur Way
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
353 Stuart Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Rowland Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
830 Summit Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4754 Moulton Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
808 Debra Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8739 Service Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Thackeray Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Bayside Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20373 Kensington Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Hooker Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
089 Old Shore Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5723 Raven Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08501 Kropf Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12845 Paget Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Vidon Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
590 Hayes Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49503 Sachtjen Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2595 Grover Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3169 Old Gate Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90974 Chinook Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75790 Towne Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Northport Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Calypso Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81848 Amoth Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27230 7th Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Cordelia Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Lakewood Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66834 Melby Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35796 Buhler Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
306 Longview Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39632 Michigan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1038 Hayes Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Eastlawn Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Monument Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64700 2nd Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
999 Huxley Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
311 Emmet Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
000 Jana Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7671 Oak Valley Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8304 Derek Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8635 Cody Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Debs Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
858 Independence Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
142 Cambridge Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20198 Hansons Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04678 Elka Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Farmco Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 East Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1949 Pepper Wood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7901 Park Meadow Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Maywood Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
532 Bartillon Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
032 Kenwood Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 8th Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06008 Anthes Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
956 Mccormick Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Eggendart Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Service Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62117 Trailsway Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Graedel Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
311 Chive Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9161 Hoepker Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19 Lakewood Gardens Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5861 Browning Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
396 Butternut Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Hansons Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8601 Cardinal Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35631 Colorado Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
446 Dottie Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Ilene Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
909 Browning Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8498 Hoepker Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Claremont Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Hayes Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Bunting Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Pawling Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Carioca Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4559 Stoughton Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7046 Surrey Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58821 Warbler Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Delladonna Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Sommers Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Lunder Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93098 Loftsgordon Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61493 Manufacturers Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1192 Declaration Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Cherokee Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01736 Saint Paul Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9816 Carberry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36912 Gina Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86857 Hoepker Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8435 Arkansas Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Novick Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0278 Elka Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
067 Cottonwood Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60010 Knutson Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
945 Hayes Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Huxley Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Rigney Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Meadow Ridge Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
506 Iowa Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
846 Clove Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07 Pepper Wood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
425 Thierer Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
876 Ridgeview Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00164 Canary Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Talmadge Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Birchwood Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3785 Dapin Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Ryan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
679 Huxley Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Hoffman Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
786 Rowland Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
375 Drewry Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
608 Basil Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Schmedeman Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95022 Roth Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66897 Pawling Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Thackeray Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
363 Schiller Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1923 Fisk Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Loeprich Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
575 Prentice Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Melrose Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
226 Rowland Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Springs Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4744 Garrison Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Nelson Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87 Linden Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
329 Glacier Hill Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
725 Cordelia Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Cody Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Namekagon Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
165 Petterle Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Golf Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9427 Tennyson Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8300 Vermont Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Upham Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Forest Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
049 Michigan Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
831 Hayes Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
491 Merry Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
598 Randy Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5873 Hagan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Erie Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
678 Old Gate Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Mayfield Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41759 Crowley Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9892 Dennis Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58729 Moland Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36360 Coleman Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Aberg Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 La Follette Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2884 Welch Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Meadow Vale Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9912 Eagle Crest Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
355 Thackeray Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Anniversary Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14 Autumn Leaf Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30274 Graedel Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
74013 Mesta Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Lindbergh Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Corscot Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77006 Nelson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Mesta Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1349 Namekagon Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
186 Shasta Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Warbler Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
756 Farragut Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
197 Mifflin Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
618 Independence Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2836 Morning Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Lawn Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Cascade Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Sunfield Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Lyons Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96910 Sugar Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
558 Maple Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9114 Union Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Hanson Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Sheridan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40545 Forster Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8425 Jackson Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39035 Westerfield Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8234 Riverside Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4535 Daystar Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Fallview Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75826 Bellgrove Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64080 Susan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8179 Veith Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Maple Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Carey Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Moose Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02 Bartelt Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0650 Sachs Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16420 Veith Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81310 Charing Cross Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37430 Merrick Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6046 Sheridan Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
537 Packers Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Briar Crest Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Lillian Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70836 Colorado Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Emmet Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Dottie Court
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
520 Stephen Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18939 Upham Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4222 Porter Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1721 Nobel Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30550 Pierstorff Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Morning Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
646 Mariners Cove Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51 Londonderry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4086 Darwin Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4033 Hermina Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Banding Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8080 Victoria Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14254 Hallows Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Glacier Hill Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Fulton Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Londonderry Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68861 School Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Bartelt Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29639 Porter Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5811 Moulton Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80027 Ryan Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Kingsford Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8044 Emmet Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2249 Havey Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1855 Stang Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Riverside Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Esker Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9984 Pankratz Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
324 Mifflin Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2726 Cardinal Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Talisman Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
282 West Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08260 Jay Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 6th Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0297 Merchant Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Monica Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0272 Pankratz Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 North Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
345 Dovetail Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2826 Huxley Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61043 Summer Ridge Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56045 Express Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
760 Forest Dale Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Wayridge Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Dahle Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62215 Delaware Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Dorton Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Evergreen Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Maple Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Jana Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
195 Knutson Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Melby Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Vahlen Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6330 Monica Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7101 Gulseth Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
983 2nd Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Vidon Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36 Helena Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20554 Orin Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3903 Messerschmidt Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Muir Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06495 Swallow Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
033 Loftsgordon Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Scofield Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Milwaukee Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50851 Vahlen Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Bay Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Thompson Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Elka Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2699 Crest Line Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Melody Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 New Castle Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2570 Wayridge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70 Old Gate Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Magdeline Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36744 Birchwood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68 Chinook Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Valley Edge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Starling Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Crest Line Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0601 Stephen Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Mockingbird Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37817 Burning Wood Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02353 Kropf Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Arkansas Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4085 Jackson Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Gulseth Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52737 Morningstar Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
866 Rockefeller Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
414 Kensington Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Holy Cross Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Loomis Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
572 Brown Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92344 Oakridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1626 Dawn Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
845 Talisman Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1899 Manley Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15067 Commercial Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80932 5th Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
018 Erie Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40402 Moulton Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
246 Norway Maple Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Autumn Leaf Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
808 Starling Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5409 Mandrake Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
786 Bonner Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7175 Orin Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8208 Lotheville Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25689 Eastlawn Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Lakewood Gardens Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87 Twin Pines Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65 Sachtjen Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Loomis Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58047 Westport Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59000 American Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
659 Scofield Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
388 Weeping Birch Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09413 Holmberg Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8640 Village Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
177 Sheridan Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Oriole Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8925 Ryan Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Nova Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Esker Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
205 Melody Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44997 Anniversary Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4444 Bunting Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Washington Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
285 Aberg Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Sachtjen Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
055 Dakota Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Green Ridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6841 Dawn Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
74251 Golden Leaf Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Dwight Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
511 Gulseth Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71801 Grover Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69 Hovde Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3387 Warrior Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7837 Derek Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Algoma Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
341 Londonderry Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2661 Di Loreto Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
036 Kedzie Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
615 Spenser Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
641 Waywood Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Buhler Plaza
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Graceland Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Magdeline Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94 Anhalt Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Parkside Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
681 Transport Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Harper Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59041 Independence Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Hovde Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36903 Reinke Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
938 Nova Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Bobwhite Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7391 Ruskin Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
677 Butternut Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8360 Washington Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
519 Maywood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6712 Nova Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
383 Rockefeller Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71039 Packers Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Hauk Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02377 Maywood Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 School Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9254 Straubel Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Glacier Hill Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
029 Springview Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Springview Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Meadow Valley Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Thompson Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Pankratz Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65345 Marcy Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Pawling Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06419 Dayton Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Hauk Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
923 Westerfield Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
707 Spaight Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Monument Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
583 Coleman Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
376 Buena Vista Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91457 Anderson Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39 Ronald Regan Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 5th Parkway
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Meadow Ridge Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41821 Sheridan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Reindahl Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6382 Bayside Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
850 Manitowish Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Comanche Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13845 Hayes Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88022 South Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Northridge Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95530 Hallows Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97 Karstens Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
237 Summit Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Cottonwood Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8642 Forest Run Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
352 Bonner Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52726 High Crossing Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60086 Summit Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Farmco Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Kropf Hill
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Derek Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87140 Mandrake Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69278 High Crossing Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Cordelia Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 2nd Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Colorado Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Daystar Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 Dwight Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3828 Norway Maple Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3044 Summer Ridge Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43455 Carey Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57953 Drewry Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Luster Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9987 Stuart Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2309 Gulseth Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
730 Dixon Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10421 Cordelia Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35454 Welch Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3403 Spenser Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Oneill Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
243 Ridge Oak Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Eastlawn Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Farwell Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Reindahl Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8882 Valley Edge Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
633 Cordelia Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Dennis Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54905 Anniversary Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Gale Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5413 Burning Wood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6183 Morrow Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Colorado Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
627 Ronald Regan Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93446 Eagle Crest Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Clyde Gallagher Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56709 Petterle Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
221 Coolidge Parkway
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33564 Jana Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Starling Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
283 Ryan Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97 Aberg Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Menomonie Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Carpenter Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14796 Ramsey Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1346 Forest Dale Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
217 Meadow Vale Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
341 Saint Paul Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7823 Village Green Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
382 Dayton Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Kennedy Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4364 Gale Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2379 Dorton Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Hintze Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 High Crossing Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Ridgeway Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Park Meadow Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29419 Harper Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1601 Judy Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7628 Larry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
004 Lawn Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Dahle Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1472 Meadow Vale Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Old Gate Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Fairfield Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Bunker Hill Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Boyd Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
938 Monica Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26204 Monument Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36 Grayhawk Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8276 Hudson Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3638 Starling Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7380 Canary Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Debs Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Shasta Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Goodland Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Amoth Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
730 Butternut Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21780 Service Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00745 Huxley Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45 Hazelcrest Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84019 Porter Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64211 Laurel Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31369 Meadow Valley Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8298 Texas Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Continental Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0465 Melrose Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5357 Mcguire Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4757 Texas Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Sunfield Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
656 Bartelt Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
610 Lakewood Gardens Point
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Lukken Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Holmberg Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3383 Fair Oaks Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Vermont Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
486 Atwood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 Loftsgordon Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
570 Butternut Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63 Grayhawk Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44594 5th Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
495 Elmside Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Macpherson Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
738 Division Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Sheridan Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Lunder Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Hayes Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
711 Sachtjen Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16395 Nevada Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0996 Cody Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80424 Corben Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37208 Golf View Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1128 Golden Leaf Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4885 Stone Corner Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66 Hudson Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5287 Wayridge Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15393 Cody Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Mcbride Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4870 Shelley Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65634 Del Mar Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8572 Melvin Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5549 Bay Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Forest Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Kedzie Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60601 Hoffman Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1715 Scoville Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Laurel Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3082 Almo Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27135 Melvin Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Kinsman Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
094 Green Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Spohn Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Jana Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
201 Pepper Wood Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4408 Haas Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Pawling Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31111 Hoepker Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Lighthouse Bay Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2354 Forster Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5271 Vernon Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Declaration Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07716 5th Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 Pennsylvania Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2330 Huxley Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5811 Hanson Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Main Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
682 Spenser Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1149 Riverside Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1176 Pine View Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Sachtjen Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Pankratz Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6988 Acker Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9993 Mccormick Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Holmberg Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Village Green Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4044 Tennessee Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4297 Emmet Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Sycamore Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Barby Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37495 Summerview Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Center Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19386 Burrows Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Quincy Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69881 Westport Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Ramsey Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12764 Raven Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
356 Petterle Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2827 Fallview Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Del Sol Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05415 Basil Junction
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Warbler Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
847 David Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24596 Hoepker Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Mesta Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7258 Mandrake Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84741 Scoville Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04328 Rowland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
332 Maywood Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6026 Graceland Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Fremont Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5515 Artisan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Nevada Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Heffernan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Onsgard Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Division Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9623 Fisk Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9419 Homewood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26349 Spaight Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1063 Forest Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
548 Dahle Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Barby Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
258 Luster Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22669 Lien Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Autumn Leaf Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Superior Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86603 Dexter Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Ridgeview Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4754 Ramsey Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Dayton Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Carey Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
915 Thackeray Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
515 3rd Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
184 Roth Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Porter Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79494 Ruskin Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Schiller Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20519 Katie Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2273 Oneill Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 6th Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8548 Hanover Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4079 Lindbergh Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
338 Grasskamp Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0355 3rd Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0182 Esker Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Sheridan Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1879 Mitchell Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81114 7th Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Nevada Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Buell Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4284 Debra Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Hansons Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7674 Roxbury Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
771 Sugar Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1792 Judy Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Melvin Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
592 Merry Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Dapin Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 Holmberg Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8587 Graceland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Messerschmidt Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5998 Bayside Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
107 Moland Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4439 7th Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2272 Dennis Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Scofield Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51152 Brickson Park Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4668 Coleman Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Moland Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Raven Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40570 Acker Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
893 Petterle Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Monument Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0103 Bay Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9618 Havey Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
098 Veith Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03058 Shoshone Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7975 Browning Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
154 Cambridge Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Sachs Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0386 Mayfield Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Merchant Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
353 Oneill Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92867 Lukken Lane
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Corscot Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Buhler Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72673 Mayfield Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42739 Moose Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Atwood Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
378 Prentice Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Forest Run Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Main Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Cherokee Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
698 Summer Ridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Grasskamp Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6541 Dahle Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
858 Swallow Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0005 Independence Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
525 Kedzie Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03890 Logan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Clyde Gallagher Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Elka Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85931 Johnson Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63588 Clove Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Stang Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Westridge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53740 Vera Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Ramsey Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
651 Mesta Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Merrick Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
135 Crest Line Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63576 Anzinger Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 Charing Cross Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
261 Farmco Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Northport Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
894 Maple Wood Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 Daystar Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81167 Division Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
761 Bellgrove Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
614 Shopko Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1911 Waxwing Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Kedzie Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0108 Forster Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
466 Briar Crest Junction
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6072 Ridge Oak Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31445 Morningstar Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22619 Schurz Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Kim Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12103 Merchant Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Porter Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Luster Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Dahle Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Magdeline Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
275 Lindbergh Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
592 Tennessee Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 American Ash Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
387 Pawling Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Evergreen Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51529 Cascade Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
457 Ryan Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94219 Buell Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
267 Lukken Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Harbort Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 American Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2388 Thackeray Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85957 Basil Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Cottonwood Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Sutherland Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7929 Grasskamp Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Hoard Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Dunning Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61949 7th Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26 Lotheville Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3765 Mandrake Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67348 Lakewood Gardens Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
014 Birchwood Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17357 Katie Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5772 Kennedy Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
560 Melody Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Waubesa Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
359 Kropf Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Scott Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Eliot Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3466 Truax Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 7th Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65209 Merrick Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90351 Duke Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Glacier Hill Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7978 Carberry Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
795 Arapahoe Hill
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Lerdahl Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60320 Emmet Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Golf Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
563 Northport Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Eggendart Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91336 Spenser Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Rockefeller Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Sundown Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Bayside Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23 Hollow Ridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16623 Mariners Cove Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
884 Shoshone Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Prentice Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7008 Warner Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51673 Heffernan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Meadow Ridge Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Clarendon Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Onsgard Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
543 Victoria Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
640 Toban Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Corben Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26 Portage Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7928 Mendota Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1075 Raven Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Summerview Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7310 Shopko Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6659 Kenwood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Knutson Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67396 Roxbury Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Hauk Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
131 Tony Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
791 Elgar Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
617 Welch Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Namekagon Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Blaine Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Pankratz Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4081 Veith Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Elgar Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9821 Fair Oaks Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19679 Buell Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Kinsman Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9989 Toban Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
378 Butterfield Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Schurz Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07780 Autumn Leaf Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87 Reinke Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Gina Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
029 Scott Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36072 Lakewood Gardens Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
408 Grover Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
392 Ridge Oak Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Sugar Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0917 Golf View Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16039 Warrior Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 School Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9120 Corry Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Shoshone Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Vidon Point
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
515 Bunting Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67727 Westerfield Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Moland Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
764 Dahle Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Shasta Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
210 Esch Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55326 Fulton Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
482 Bartelt Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58563 Monterey Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
889 Straubel Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Dawn Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1988 Bartillon Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57384 Sycamore Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
276 Hoffman Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98791 Johnson Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 John Wall Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0693 Eagan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Main Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Shasta Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Farmco Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9985 Barnett Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60855 Fieldstone Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Dixon Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Canary Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09653 Golf View Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
433 Mockingbird Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Sycamore Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
833 Sherman Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Fulton Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02885 Buhler Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8766 Onsgard Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5061 Cottonwood Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 Dahle Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5063 Shopko Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Hagan Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87897 Lighthouse Bay Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
294 Lawn Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Springview Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Logan Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6002 Del Sol Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Acker Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Hansons Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30 Crescent Oaks Point
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0784 Utah Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5298 Nevada Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Ramsey Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7006 Miller Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Bayside Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43811 Golf View Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19 Green Ridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91079 Lukken Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1450 Gulseth Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Boyd Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Almo Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
016 Tony Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02505 Mariners Cove Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
970 Sundown Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0261 Roxbury Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5413 Harbort Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03444 Scott Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Schlimgen Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0162 Darwin Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66 Division Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Forster Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
939 Hermina Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
393 Warrior Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3962 Rigney Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64201 Bonner Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Grasskamp Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3831 Paget Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46523 Mcbride Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 Mallory Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6229 Amoth Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
952 Fairview Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 La Follette Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6837 West Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28 Menomonie Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94 Sheridan Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 Claremont Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70676 Eggendart Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5586 Buena Vista Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02701 Talmadge Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
220 Mitchell Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02570 Tony Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Alpine Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Northfield Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7709 Bluestem Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8108 Clyde Gallagher Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79206 Independence Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60447 Ridgeway Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Milwaukee Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73506 Cordelia Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Rowland Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42829 Charing Cross Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7530 Sutteridge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88545 Milwaukee Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
070 Shelley Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12439 Kropf Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
931 Rigney Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Anderson Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11207 Lukken Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4370 Haas Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45 Tony Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Dovetail Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
967 Farmco Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
623 Talisman Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
837 Evergreen Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 West Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83758 Kings Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Veith Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Pond Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
255 Doe Crossing Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Alpine Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Talisman Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5700 Banding Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94079 Eggendart Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87038 Sauthoff Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4817 Fulton Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Transport Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1231 Grim Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Rigney Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7847 Buell Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42946 Fieldstone Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1617 Beilfuss Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Everett Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
184 Melrose Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8934 Park Meadow Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14155 Evergreen Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26607 West Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53649 Mandrake Place
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
223 Trailsway Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8999 Elmside Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Steensland Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Prairie Rose Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3416 Texas Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8088 Macpherson Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6418 Jenna Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70262 Hermina Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89684 Coolidge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 International Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Carioca Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6386 Raven Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Mendota Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
913 Londonderry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58516 Tony Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
583 Jenna Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77729 Kim Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1253 Ridge Oak Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
975 Melby Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6279 Lien Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1435 Lukken Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Darwin Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Independence Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Stone Corner Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14179 Springs Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Green Ridge Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Red Cloud Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 Spohn Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11606 Myrtle Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45725 Hagan Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93482 Jenifer Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Gulseth Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Canary Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Dayton Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25607 Summer Ridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
828 Schlimgen Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
558 Thompson Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
589 Main Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
472 Blaine Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Express Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Norway Maple Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Oriole Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
038 North Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7231 Pepper Wood Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
941 La Follette Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Barby Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29133 Canary Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Redwing Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57835 Ruskin Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Mifflin Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7509 Prairieview Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Delaware Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15012 Oneill Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4861 School Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Sycamore Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
005 Prentice Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Artisan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7764 Declaration Hill
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7049 Sutteridge Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Dexter Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
543 Morrow Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36 Marquette Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Arizona Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78960 Schiller Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Hoepker Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39677 Emmet Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30 Bay Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Canary Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Maywood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04489 Corscot Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00941 7th Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Bayside Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8802 Fisk Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Darwin Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54295 Dorton Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 Spohn Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87746 Bellgrove Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4517 Colorado Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91433 Hollow Ridge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
237 Garrison Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Bartillon Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Nelson Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Pepper Wood Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79055 Moose Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
520 Mesta Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0534 Bartelt Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3009 Duke Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
484 Lindbergh Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Luster Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28 Mcguire Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6750 Truax Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84749 Holy Cross Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
486 Clyde Gallagher Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
305 Vera Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Moulton Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
213 Alpine Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Saint Paul Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7921 Trailsway Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90323 Pine View Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Hooker Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
193 Bluejay Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Monument Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Portage Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
243 Mosinee Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65 Southridge Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Maple Wood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8595 Ruskin Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Eastwood Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68 Delaware Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08167 Buhler Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0046 Grim Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Sutteridge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Boyd Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Bobwhite Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62047 Ludington Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
277 Maple Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
845 Mendota Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13795 Corscot Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Twin Pines Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07236 Jenifer Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Darwin Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57878 Northfield Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Donald Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
842 Rutledge Parkway
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8462 Emmet Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6265 Moland Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Rowland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04488 Jenna Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Toban Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Manley Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Eastlawn Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97910 Leroy Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
608 Rutledge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Heffernan Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Northfield Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
996 Morning Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7015 Hintze Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3525 Buena Vista Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Hallows Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7317 Huxley Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Hanover Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3384 Nelson Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45314 Pepper Wood Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85301 John Wall Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
277 Lindbergh Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Logan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70416 Becker Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
256 Fordem Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Laurel Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7032 Hallows Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78000 Arrowood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Elgar Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Veith Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Michigan Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2272 Buena Vista Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Thackeray Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Warrior Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5447 Weeping Birch Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
019 Derek Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Florence Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2390 Blackbird Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Sundown Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5447 Buell Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
978 Valley Edge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Dunning Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
848 Dawn Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2517 Glacier Hill Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
658 Northfield Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Algoma Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1617 Lakewood Gardens Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
373 Oak Valley Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75164 Sherman Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6491 Gerald Court
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84504 Doe Crossing Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55433 Schmedeman Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
835 Thackeray Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Fuller Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5333 Aberg Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Melody Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 Dahle Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Mayfield Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9020 Anhalt Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Melby Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Eliot Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94181 South Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
718 Colorado Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Southridge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Westport Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Namekagon Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Roxbury Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 Hazelcrest Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5528 North Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9179 Sunfield Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18708 Darwin Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46310 Raven Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49932 Messerschmidt Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Monument Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Green Ridge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Briar Crest Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
313 Schiller Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Bartillon Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Moland Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Mcguire Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Ridgeway Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Bultman Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Mariners Cove Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38330 Badeau Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
515 Monterey Terrace
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73363 Butterfield Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65387 Thackeray Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Hudson Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5274 Lindbergh Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81942 Scott Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Fordem Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8012 American Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
461 Esker Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Badeau Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Kipling Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Jay Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17974 Kedzie Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82598 Arkansas Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
208 Golden Leaf Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Pankratz Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Graceland Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1041 Center Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9161 Macpherson Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
816 Gale Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17485 Tennyson Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9168 Thackeray Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4889 Tomscot Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
709 Schmedeman Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Steensland Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59643 Reindahl Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29438 Swallow Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Fallview Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Bowman Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Monterey Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Morning Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Vahlen Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9175 Ryan Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Pankratz Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
018 Superior Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9737 Vernon Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
290 Havey Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4709 Cardinal Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
087 Fallview Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
116 Sullivan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
309 Oneill Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Morningstar Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Mosinee Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Saint Paul Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Northridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
091 Hoard Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36445 Meadow Valley Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
419 2nd Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Dwight Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1908 Brickson Park Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
367 Algoma Lane
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9037 Norway Maple Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1301 Northwestern Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3205 Service Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
906 Pawling Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53141 Merrick Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51 Hollow Ridge Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38233 Boyd Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21800 Duke Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Buena Vista Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Victoria Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Colorado Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39846 Springs Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Talisman Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
147 Waubesa Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Dwight Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Mallard Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Onsgard Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20415 Clyde Gallagher Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Hagan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Spohn Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Scott Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02862 Esker Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 Lillian Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
644 Karstens Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Graedel Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Menomonie Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7233 Lerdahl Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5676 Golf View Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Mcguire Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
773 Tomscot Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Fisk Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Pierstorff Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25253 Straubel Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
752 Nevada Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0672 Mitchell Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Parkside Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7962 Dottie Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Westport Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63862 Dawn Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2538 Gateway Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33006 Petterle Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0130 Loeprich Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Warner Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Ohio Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Evergreen Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 Ohio Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4912 Lukken Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Cherokee Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4216 Annamark Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Forest Dale Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Namekagon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09810 Dayton Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Magdeline Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Laurel Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
441 Old Shore Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Huxley Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3483 Burrows Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84707 Harper Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Jackson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Armistice Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73425 Mitchell Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 5th Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
096 Anniversary Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7714 Heffernan Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Portage Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
636 Debs Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08731 Coleman Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12860 Warner Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 Cambridge Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8943 Knutson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Nevada Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Havey Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
466 Westport Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40985 Cherokee Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
410 Hoepker Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Reinke Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9097 Superior Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Hansons Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5394 Dryden Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Bultman Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
835 West Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Vermont Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6238 Hanover Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Thierer Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71776 Express Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
162 Golf View Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7389 Union Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07 Miller Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30 Delladonna Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7395 Blackbird Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79427 Hudson Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Hooker Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0380 Chinook Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4092 Brentwood Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
613 Mayfield Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Spohn Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05239 Springs Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Old Gate Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31186 Hoard Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Crest Line Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18083 Mallard Drive
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Lakeland Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
023 Thackeray Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79737 Hollow Ridge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95465 Union Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66238 Old Gate Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Delladonna Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Mallard Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Eastwood Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
507 Onsgard Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69555 Dakota Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21969 Lawn Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Erie Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0724 Oxford Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Monterey Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Duke Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
156 Lakeland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Mosinee Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1508 Hooker Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3202 Ridge Oak Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5510 Pepper Wood Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42952 Fairfield Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Garrison Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
013 Armistice Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3201 Canary Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4365 Basil Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1164 Toban Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2364 Dovetail Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
738 Sloan Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
318 Jenifer Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6395 Anthes Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36516 Forster Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
107 Garrison Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
717 Oakridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16405 Doe Crossing Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Monument Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99841 Talisman Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 Duke Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
891 Anderson Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9446 Holmberg Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46512 Cambridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54250 Welch Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
734 South Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
769 Banding Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2590 Northport Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9649 Cascade Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69 Valley Edge Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
327 Monument Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Sunnyside Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Hoffman Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
894 Duke Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01714 Claremont Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6809 Maple Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95294 Karstens Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8872 Bunker Hill Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14 Westport Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
867 Grim Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48023 International Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Prairie Rose Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56145 Porter Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
509 Ridgeway Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Eagan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5290 Lunder Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52425 Prairie Rose Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7939 Toban Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0672 Lyons Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
904 Mandrake Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3007 Summer Ridge Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Veith Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
007 Canary Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Saint Paul Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87705 Hovde Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
765 6th Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
248 Bartillon Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66811 Lerdahl Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5809 Coolidge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2769 Banding Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Monterey Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85549 Sheridan Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4498 Donald Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Ridgeway Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Bartelt Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91116 Riverside Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60911 Almo Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Superior Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Superior Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Marquette Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36 Sommers Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83148 Rowland Alley
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Arrowood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Mandrake Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Emmet Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16984 Pankratz Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9460 Laurel Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5786 Kinsman Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Fairfield Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
319 Michigan Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Fulton Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Corben Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Drewry Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Dawn Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6244 Forest Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0306 Donald Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3762 Victoria Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Manley Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36866 Summit Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Pearson Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7450 Prairie Rose Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83975 Rowland Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Weeping Birch Plaza
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
738 Dixon Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5766 Pearson Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Shelley Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07273 Sundown Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Maryland Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Roth Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81856 Express Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Porter Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Waywood Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6838 Anniversary Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90128 Caliangt Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
504 Mesta Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Utah Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00213 Atwood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7230 Montana Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51763 Carey Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Susan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
745 Troy Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Upham Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34694 Sugar Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26876 Lyons Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8308 Linden Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32708 Bluestem Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3542 Arkansas Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
642 Anderson Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8318 Continental Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7202 Prairieview Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64610 Sachtjen Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Muir Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
710 Schiller Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
698 Old Gate Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Golden Leaf Road
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1979 Arapahoe Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Vernon Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79862 Darwin Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
184 Hoepker Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 New Castle Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9525 Johnson Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Pearson Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Dakota Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4262 Melvin Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4415 Dwight Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1197 Carey Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
227 Havey Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Manufacturers Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9175 Stephen Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
299 Pine View Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Orin Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
134 Knutson Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Mockingbird Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00969 Gale Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05665 Dottie Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Wayridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Carioca Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Kenwood Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 Hansons Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
493 Buell Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Del Mar Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Elgar Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
425 Marquette Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67104 Bunting Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
243 Raven Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
248 School Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Onsgard Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Havey Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Armistice Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34953 Oak Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Express Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04046 Summit Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
986 Hollow Ridge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4622 Dixon Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3563 Darwin Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38759 Butterfield Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67125 Melody Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Northwestern Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Farwell Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19 Barby Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
681 School Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Dawn Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
366 International Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
427 Rockefeller Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5176 Division Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Raven Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 Delaware Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42554 Burrows Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
726 Warrior Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
500 Victoria Plaza
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Debra Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62965 Morningstar Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6698 Melody Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05919 Morning Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Rockefeller Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7875 Fieldstone Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59170 Westridge Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Bonner Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
113 Lien Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
064 Fallview Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Sutteridge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3984 Clove Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Rowland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5157 Maple Wood Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
559 Blackbird Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6466 Troy Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7135 Ruskin Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Loftsgordon Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Del Mar Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06069 Hayes Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
828 Waubesa Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Bobwhite Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Memorial Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
644 Mcbride Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23700 Dennis Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5795 Comanche Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Scofield Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
218 Elka Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5468 Moose Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
174 Calypso Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53358 David Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 3rd Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Melvin Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9670 4th Point
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2228 Steensland Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Thierer Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23 Huxley Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 3rd Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63 Golf Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Sloan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
056 Pierstorff Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
177 Anniversary Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Karstens Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6950 Morrow Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8492 Autumn Leaf Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91749 Portage Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45 Waubesa Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51739 Sundown Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Butterfield Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Porter Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
236 Fremont Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46031 Hudson Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Crowley Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50532 Hoard Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Sommers Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Red Cloud Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24951 Michigan Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51960 Gulseth Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
144 Parkside Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
896 Helena Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Anhalt Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1786 Orin Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Green Ridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2807 Northwestern Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9362 Grim Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Sommers Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
74164 Village Green Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
623 Melody Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Roth Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Buhler Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Sachtjen Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
130 Hayes Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Logan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Superior Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
575 Katie Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Old Shore Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7949 Waywood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2982 Monterey Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
692 Leroy Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9499 Alpine Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0442 Debra Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Upham Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63832 Maple Wood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Rockefeller Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95483 Washington Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1396 Sugar Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8454 Pierstorff Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2444 Aberg Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73637 Nancy Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Beilfuss Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
891 Mendota Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73 Muir Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Raven Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6563 Susan Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Prentice Lane
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65880 Cascade Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6632 Truax Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68882 Commercial Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
949 Marquette Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9953 Kim Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Pierstorff Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
158 Lindbergh Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Ilene Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4081 Lighthouse Bay Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
794 Kennedy Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3981 Karstens Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88039 Melody Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
344 Rockefeller Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
434 Eggendart Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Waubesa Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
831 Prairieview Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
884 Surrey Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60424 Bultman Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
882 Merry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47878 Pond Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Porter Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
984 Waubesa Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91933 Artisan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
624 Atwood Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Mcguire Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 South Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Macpherson Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5965 Glacier Hill Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
556 Esch Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25943 Montana Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Dawn Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Harbort Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
464 Bonner Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0899 Judy Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Sunbrook Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Vidon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Cody Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8209 Tony Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65675 Spenser Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
042 Saint Paul Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3516 Kensington Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26064 Morningstar Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
686 Rusk Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7518 Canary Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Spenser Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
654 Kim Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Moose Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99000 Petterle Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
549 Longview Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1861 Golf Course Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Mayer Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47336 Garrison Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Drewry Road
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75581 Express Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Fairfield Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Kensington Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9870 Brickson Park Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Memorial Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4559 Sundown Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45613 Meadow Valley Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Spaight Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59694 1st Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
124 Fulton Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2800 Dottie Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Mosinee Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0799 Florence Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5882 American Ash Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13852 Burning Wood Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
735 Eastlawn Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Sauthoff Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1788 Columbus Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32705 Shelley Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Delladonna Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79291 3rd Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Bunting Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63 School Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0134 Swallow Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47204 Rigney Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9732 Swallow Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Cordelia Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88175 Center Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Muir Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Tennyson Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
698 Lunder Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Dixon Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5890 Comanche Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6621 Carberry Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
322 Scott Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15811 La Follette Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67143 Bluejay Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
966 Emmet Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49530 Evergreen Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9582 Fremont Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Declaration Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8142 Tomscot Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
396 Sachs Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Melby Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53221 Namekagon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Dovetail Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Carioca Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63123 Merry Alley
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4478 Banding Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28928 Mariners Cove Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Thierer Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Hauk Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9045 Kings Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Barnett Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6779 Melrose Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42473 Sycamore Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6631 Farragut Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
886 Rusk Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Bashford Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Sage Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26049 Straubel Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59929 West Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94 Vernon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8312 Dunning Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Novick Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02 Del Mar Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Shasta Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 East Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Goodland Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Vernon Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Killdeer Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
152 Larry Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Hudson Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6672 Butternut Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43491 Jenifer Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Chinook Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3468 Rigney Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
079 Katie Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
681 Butterfield Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Laurel Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9115 Mockingbird Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Michigan Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Hermina Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82237 Dapin Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Basil Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60650 Mcbride Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Lien Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37353 Alpine Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
581 Granby Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3073 Golf View Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Riverside Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
390 Meadow Vale Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
501 Reindahl Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Mifflin Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
261 Mosinee Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Boyd Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Washington Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Straubel Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70 Old Gate Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40062 Steensland Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39179 Bayside Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04488 Amoth Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
259 Homewood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
863 Crescent Oaks Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
353 Scott Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97 Randy Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
047 Northfield Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0132 Merrick Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9248 Ludington Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Forest Dale Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Blaine Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 2nd Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8718 Warner Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Mallory Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29180 American Ash Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6471 Meadow Valley Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Waxwing Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Buell Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Rigney Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7035 Crest Line Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9129 Gale Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71109 Vernon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
883 Almo Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
987 Victoria Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7037 North Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Shasta Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9574 David Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Del Sol Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Valley Edge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
004 Gulseth Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
503 Clove Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0346 Dayton Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Derek Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3417 Huxley Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
163 Gale Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Grim Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31953 Dixon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
463 Rowland Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
054 Mesta Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33550 Spohn Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
953 Del Sol Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
369 Milwaukee Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10055 Old Shore Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
018 Porter Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Elka Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5086 Meadow Ridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66 Talmadge Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09356 Badeau Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1032 Killdeer Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Ilene Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5015 Pawling Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5701 Sugar Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Melrose Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Novick Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23 Village Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
834 Pierstorff Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
974 Fisk Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
531 Springview Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Nova Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3242 Arizona Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Delaware Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1913 Magdeline Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Annamark Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Main Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Lake View Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
015 Fulton Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Marcy Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0991 Commercial Road
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24198 Almo Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01268 Stuart Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25139 Rockefeller Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
159 Graceland Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0522 Nelson Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90609 Charing Cross Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
360 Troy Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08475 Shoshone Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44778 Bellgrove Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69444 Mccormick Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Macpherson Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
386 Jay Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
496 Summit Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54970 Veith Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33477 Trailsway Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Schlimgen Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Talisman Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69893 Loomis Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6505 Fieldstone Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 1st Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 American Ash Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94 Twin Pines Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
034 Eagan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Mariners Cove Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Raven Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4527 Butterfield Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
366 Hovde Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Straubel Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Butterfield Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7174 Thackeray Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 Portage Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Lakewood Gardens Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Stoughton Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
533 Ramsey Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
694 Northwestern Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Huxley Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03961 Sullivan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1081 Laurel Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Corben Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Eastlawn Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Anniversary Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0866 Pennsylvania Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Continental Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22774 Pennsylvania Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Merrick Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52593 Iowa Place
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 School Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9292 Mcguire Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Graceland Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Lerdahl Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
801 Kings Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Pawling Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89972 Graedel Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17123 Northport Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Bluestem Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
743 Stone Corner Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Prentice Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Columbus Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29 Basil Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Bay Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Oak Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 Clarendon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Gateway Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
631 Fuller Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43898 Prentice Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Melody Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Dunning Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86686 Novick Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51 Leroy Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5390 Park Meadow Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Judy Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 American Ash Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Riverside Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25925 Service Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
080 Pond Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1816 Monument Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Nova Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Mesta Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7256 Forster Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
249 Burning Wood Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12651 Lake View Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9501 Melby Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69810 Westridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
422 Crownhardt Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Londonderry Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7346 Luster Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Commercial Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44083 Village Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Tennessee Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Debra Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
846 Carberry Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Center Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Coolidge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
544 Northland Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Norway Maple Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Myrtle Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
645 Thackeray Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1439 Utah Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Hollow Ridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4177 Bluejay Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75351 Ridgeview Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4006 Algoma Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
881 Debs Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
423 Debra Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1369 Wayridge Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6142 Grayhawk Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Steensland Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37983 Logan Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31168 Messerschmidt Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
240 Lake View Road
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
290 Jay Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1369 Morrow Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61976 Emmet Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7585 Rutledge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Northwestern Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Dwight Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Becker Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Hintze Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34222 Vera Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
338 Little Fleur Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57769 Gulseth Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
309 Shopko Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Roth Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
618 Kropf Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1966 Glendale Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
401 Pond Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
582 Kropf Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Columbus Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99739 Coolidge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Westerfield Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62842 Pearson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78426 Fulton Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
336 Service Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Northridge Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Superior Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8147 Dapin Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
047 Kedzie Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9346 Sunfield Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Dunning Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Crowley Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Schiller Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71761 Almo Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4898 Buell Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Morningstar Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Shelley Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1556 Sheridan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6568 Northridge Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4694 Carioca Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Ryan Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
975 Annamark Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Ilene Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Sycamore Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8439 Katie Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Hayes Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3126 Butterfield Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Moulton Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
188 Carberry Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
083 Farragut Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62052 Loomis Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Talmadge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6247 Crest Line Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Armistice Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
572 Meadow Ridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Mcguire Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70 Erie Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Talisman Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
567 Scott Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9248 Sugar Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Tennyson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88540 Scoville Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22779 Graedel Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51800 Meadow Vale Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Trailsway Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65662 Haas Trail
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Union Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Forster Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24877 3rd Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34797 Londonderry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24649 Kennedy Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Spaight Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
711 Hayes Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30624 John Wall Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Victoria Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Blackbird Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Rutledge Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
719 Vahlen Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02 Declaration Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9366 Judy Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07623 Mandrake Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
050 Buell Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
556 Gale Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Helena Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77410 Bluejay Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Doe Crossing Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Lake View Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30 Redwing Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99488 Mccormick Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Banding Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6220 Sugar Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Anthes Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Mosinee Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Caliangt Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0192 Ridgeview Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6534 New Castle Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Hoard Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
440 Shasta Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1127 Artisan Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23478 Ramsey Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Warbler Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
685 International Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6188 Anniversary Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 American Ash Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Trailsway Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Oak Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Lukken Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88551 Hollow Ridge Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
283 Claremont Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
633 Menomonie Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Myrtle Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Park Meadow Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2757 Green Ridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Dawn Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53723 Dunning Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
671 Mallory Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
025 Knutson Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
778 Cambridge Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
601 Dryden Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3144 Ruskin Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94554 Derek Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0166 Stephen Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Sheridan Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6865 Duke Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Larry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Straubel Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
440 Ronald Regan Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
709 Rieder Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
688 Kropf Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5463 Arapahoe Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Fairfield Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Burning Wood Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92427 Norway Maple Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Shelley Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Coleman Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
463 Atwood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8561 Alpine Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Lighthouse Bay Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Dunning Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
255 Bonner Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02485 Bellgrove Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3934 Karstens Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
583 Eagle Crest Road
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Lerdahl Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Truax Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65 Waxwing Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Mendota Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4821 Schlimgen Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Miller Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Barby Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
084 Brickson Park Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
147 Golden Leaf Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
457 Merry Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94 Marquette Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
711 Summerview Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Debs Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15952 Mockingbird Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Towne Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55501 Sugar Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Cambridge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71725 Goodland Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7282 Prairie Rose Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63785 Anthes Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Loomis Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6551 Atwood Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
258 Bunker Hill Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
592 Oak Valley Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83441 Donald Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9106 Thompson Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0671 Vera Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 Londonderry Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1817 Bluejay Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Grayhawk Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5342 Hallows Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
303 Michigan Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Forest Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Pennsylvania Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
755 Ramsey Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33782 Doe Crossing Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97 Waxwing Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Marquette Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
357 Elgar Alley
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37258 Stephen Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Cambridge Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 American Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Stuart Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Carioca Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75688 Maple Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
906 Toban Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76085 Eagan Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28634 Nova Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Colorado Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1031 Kennedy Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23426 Transport Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Del Mar Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3024 Butternut Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93124 Monterey Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51313 Fulton Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
889 Sundown Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55590 Ridgeview Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2271 Fordem Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Parkside Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Northfield Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
536 Crowley Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Erie Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9837 Granby Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Lake View Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1567 Schiller Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Warbler Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
383 Little Fleur Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
804 Shelley Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Beilfuss Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78019 Manley Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Warrior Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
688 Straubel Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1945 Loomis Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87 Elka Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Dexter Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
701 Talisman Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
518 Colorado Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Forest Dale Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Huxley Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Fordem Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52753 Logan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Old Gate Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Manitowish Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
008 6th Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Shasta Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Veith Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 Kedzie Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
736 Tomscot Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9521 Old Shore Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Homewood Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6876 Mandrake Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Hudson Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7163 2nd Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30 Parkside Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19 Fairview Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
444 Spaight Crossing
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
447 Delaware Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Dayton Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
882 Mitchell Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68128 Leroy Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 South Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
648 Rigney Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Ronald Regan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
359 Briar Crest Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4543 Service Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Knutson Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28156 School Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
920 Manley Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Armistice Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6988 Waxwing Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
84 Southridge Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Eagle Crest Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
571 Golf Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52408 Autumn Leaf Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Loomis Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1411 Jenifer Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
336 Fordem Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Hoepker Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2864 Corscot Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4658 Tennessee Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53485 Sycamore Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
446 Warrior Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25567 Linden Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
111 Hooker Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51 Dixon Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16639 Bunting Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40923 Truax Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Moulton Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52541 Lakewood Gardens Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39746 Eliot Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Springview Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8658 Maple Wood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 Old Shore Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99565 Warrior Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
718 Fair Oaks Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Little Fleur Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
541 Southridge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77196 West Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Fordem Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Shelley Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Westport Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8598 Nova Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4826 Crowley Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Vermont Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7107 Manitowish Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9304 Birchwood Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91655 Rowland Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
76 Aberg Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6418 Sachs Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86445 Bonner Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9235 Walton Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18652 Springs Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29895 Crest Line Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65 Sunbrook Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Loftsgordon Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
122 Chinook Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6994 Hanson Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00662 Ludington Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Linden Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
831 Daystar Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Forest Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Bobwhite Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8941 Harbort Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Independence Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Holmberg Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15776 Thackeray Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 Lerdahl Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
512 Forest Run Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
304 Moland Street
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63 International Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Schmedeman Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5705 Spaight Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81254 Buhler Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Fuller Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
313 Mifflin Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Logan Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Hansons Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8476 Village Green Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45454 Spenser Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28820 Monica Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
259 Summerview Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82206 Dennis Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5837 Hayes Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33297 Hoepker Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
198 Garrison Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Golf Course Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Lakewood Gardens Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4320 Toban Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
129 Mallory Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68730 Hermina Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Ronald Regan Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Eggendart Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
744 Hazelcrest Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91973 Boyd Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2241 Pearson Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
244 Burrows Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2992 Scott Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5565 Park Meadow Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68111 Bartillon Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 School Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Anderson Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2121 Dapin Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5772 Ridgeway Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Wayridge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10369 Sunbrook Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Meadow Valley Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14 Pennsylvania Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Cascade Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
077 Clemons Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Buena Vista Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83007 Bartillon Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
542 Hayes Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Debs Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23 Clyde Gallagher Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75642 Kinsman Terrace
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Swallow Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39 Badeau Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Summit Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5108 Springview Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4362 Morningstar Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Alpine Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39 Lindbergh Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13392 Emmet Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
526 Schiller Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
677 Golden Leaf Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59901 Bartelt Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Cordelia Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
282 Esker Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
724 West Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
942 Elmside Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Manufacturers Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03 Ohio Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19 Del Mar Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01209 Southridge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4903 Hoepker Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
149 Browning Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48948 Little Fleur Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Rieder Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Sunbrook Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28905 Hallows Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9677 Hagan Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07526 Union Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53245 Mesta Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Elka Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4672 Morningstar Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3140 Hudson Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
441 Superior Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Elgar Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Independence Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
453 Gina Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Banding Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5636 Glendale Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Village Green Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46100 Jay Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69490 Orin Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
515 Warrior Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6137 Scoville Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Vernon Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 American Ash Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68 Roth Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
859 Harbort Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99216 Oakridge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82010 Lakewood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
643 Clyde Gallagher Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6970 Almo Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Springview Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46631 School Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Green Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28014 Kings Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8612 Kennedy Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Vermont Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92610 Sutherland Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2038 Esker Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Norway Maple Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72297 Sutherland Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7827 Spohn Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Gulseth Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50469 Shelley Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9695 Northland Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3619 Elgar Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Buhler Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4589 Lien Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Darwin Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Carberry Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
082 Twin Pines Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1946 Golf Course Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48418 Crescent Oaks Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Steensland Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Golf Course Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70 Shopko Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11035 Toban Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Eastwood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52 Ruskin Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3306 Bartelt Alley
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9179 Esker Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Village Green Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
352 Roth Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0555 Tomscot Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3519 Schurz Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
221 Autumn Leaf Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12689 Logan Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4623 Anniversary Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69 Dexter Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Vermont Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6804 Red Cloud Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Haas Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Ludington Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
558 Grayhawk Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04470 Mcguire Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10434 Melby Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60717 Farmco Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78814 Sundown Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62293 Raven Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Monterey Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2241 Bonner Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Bartillon Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
463 Bultman Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12574 Truax Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77433 Sunfield Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8647 La Follette Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8750 Corben Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8250 Johnson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Vahlen Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8369 Golf Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 Sachs Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53683 Arapahoe Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
177 Forest Run Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5674 Superior Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37595 Packers Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63 Bayside Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Calypso Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Ilene Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
289 Lerdahl Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
666 Holy Cross Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Forster Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2072 Fremont Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 Dapin Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
552 Talisman Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75717 Bartillon Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Caliangt Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
848 Cascade Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59231 Claremont Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
493 Calypso Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Schlimgen Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Thompson Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72850 Lotheville Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Lakeland Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8188 Fuller Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6815 South Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46418 Hauk Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Nancy Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7916 Clyde Gallagher Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24913 Twin Pines Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Barnett Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
928 Laurel Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Blue Bill Park Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
937 Sloan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66 Arrowood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Glendale Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7066 Sunbrook Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
210 Prairie Rose Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Jackson Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3957 American Ash Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 Nobel Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Heath Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
970 Randy Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
723 Center Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
423 Golf Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
415 Walton Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51 Bay Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16673 Pawling Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2875 Anhalt Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7561 Donald Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13282 Pond Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Farwell Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 New Castle Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
572 Spohn Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Hintze Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Buell Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5748 Walton Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
692 Anniversary Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5060 Donald Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Debs Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
797 Orin Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
978 Dennis Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Glendale Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64107 Little Fleur Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68473 Leroy Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
321 Muir Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
984 Hoepker Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Green Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 Kensington Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75848 Ohio Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 New Castle Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Blue Bill Park Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8007 Dawn Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02555 Sloan Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
337 Brentwood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4052 Katie Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Comanche Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Roxbury Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
860 Banding Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Knutson Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9217 Bashford Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
197 Goodland Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
373 Hayes Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3673 Jenna Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Glendale Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22239 Waubesa Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6604 Hansons Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Weeping Birch Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2126 Debra Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
726 Erie Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Tomscot Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26223 Warrior Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Kim Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0338 Oakridge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Hudson Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8594 Warner Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6136 Farragut Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 7th Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Graceland Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Northview Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Hayes Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Mariners Cove Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
130 Thompson Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23812 Tony Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3206 Debs Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Fulton Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Lukken Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
424 Almo Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9610 Gateway Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Cordelia Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Shelley Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Old Shore Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Lawn Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Texas Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Lawn Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Loftsgordon Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Lakewood Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Hagan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
673 Comanche Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Algoma Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Swallow Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 Loftsgordon Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
921 Reinke Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5913 Ramsey Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Jay Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Dennis Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 Darwin Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Nevada Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8003 Pepper Wood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
399 Butterfield Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26378 Esch Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2942 Swallow Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Anzinger Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
885 Larry Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 Sutteridge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Alpine Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Scott Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Debra Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27 Schlimgen Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
238 New Castle Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
010 Stuart Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7609 Jackson Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
520 Parkside Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7046 Fairview Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Scoville Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31435 Eagle Crest Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Crescent Oaks Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 7th Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Lerdahl Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
677 Eagan Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
638 Browning Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
731 Haas Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Grim Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01654 Milwaukee Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Arizona Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94611 Cascade Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Melrose Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88537 Erie Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5649 Crest Line Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05 2nd Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Jenifer Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5999 Waxwing Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5444 Corry Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Northland Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80302 Stang Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
529 Monterey Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Westend Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9357 Dennis Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Hansons Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
274 Ludington Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Service Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99142 Eastwood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0264 Birchwood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Bowman Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6354 Briar Crest Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Sunfield Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Northridge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Farragut Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Westport Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
922 Mccormick Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9317 Mendota Parkway
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8303 Mallard Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Gateway Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2178 Washington Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0330 Vahlen Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4351 Maywood Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
537 Amoth Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23384 Kings Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6269 Oak Valley Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
74910 Burning Wood Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6278 Old Shore Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08180 Golf Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1944 Charing Cross Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25578 Mayfield Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Rieder Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45201 Atwood Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0680 Veith Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Dunning Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
837 Elmside Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57863 Pond Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41205 Straubel Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52 Steensland Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00183 Arapahoe Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
233 Toban Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Lotheville Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Westridge Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98978 Nevada Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9503 Aberg Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Bayside Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Lighthouse Bay Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67241 Heath Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65620 Michigan Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3075 Victoria Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Stephen Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
148 Marcy Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5406 Mockingbird Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07 Loeprich Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Kings Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 John Wall Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32304 Larry Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Dryden Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
146 Dakota Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11171 Rigney Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Vidon Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1742 Scott Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
451 Luster Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03287 Hallows Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7208 Old Gate Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
944 Becker Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
904 Doe Crossing Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7285 Waxwing Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3538 Bunting Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
979 Victoria Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
073 Fremont Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81183 Maple Wood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6620 Elmside Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Shopko Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
969 Sycamore Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96073 Erie Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6915 Nobel Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Elmside Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54294 Hovde Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Grover Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4753 Sheridan Center
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6958 Knutson Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Stephen Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3126 Bayside Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98202 Holmberg Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33794 Sommers Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 2nd Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
981 Kinsman Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1617 Harper Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73907 Fallview Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99 Linden Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
409 Bobwhite Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24712 Hazelcrest Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Canary Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5310 Mosinee Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Basil Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
332 Summerview Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7435 Monument Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Cody Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07084 Mallory Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
502 John Wall Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90880 Donald Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48007 Lakewood Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
039 Havey Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32798 Melby Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0250 Onsgard Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
121 Anniversary Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Warrior Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5323 Chive Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63663 Darwin Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Hansons Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Quincy Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
541 Ramsey Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9890 Macpherson Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Erie Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Clarendon Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55152 Delaware Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09 Mitchell Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49956 Hovde Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Glacier Hill Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4527 Farmco Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Rutledge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
398 Butternut Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Marcy Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 John Wall Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2346 Dawn Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Erie Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
040 Brown Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94850 Moland Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Tomscot Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Kipling Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9632 Katie Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
390 Wayridge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Gateway Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26 Randy Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31435 Surrey Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9200 Continental Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
696 Harbort Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Hayes Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Michigan Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6735 Katie Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Kingsford Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69 Huxley Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10 Hauk Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Jenifer Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Gateway Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
081 Oakridge Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40252 Springs Park
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6590 Fremont Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
972 Lake View Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Havey Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05600 Lien Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Roth Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
842 Texas Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
020 Bartillon Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
778 7th Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60595 Northport Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
220 American Ash Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
378 Maple Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41141 Cascade Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66 Sunfield Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 South Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
182 Homewood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Hermina Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
68486 Anderson Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Farragut Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7858 Sauthoff Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
050 Monterey Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
743 Karstens Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26710 Express Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 Nevada Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8200 Dapin Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
423 Mcbride Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
580 Blaine Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Crescent Oaks Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7198 Rowland Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93723 Old Gate Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50506 Buhler Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Iowa Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97 Sunnyside Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37363 Morning Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
751 Cordelia Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Del Sol Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
864 Scoville Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Bayside Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78258 Hanover Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Service Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Quincy Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
322 Garrison Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Roth Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
225 Dexter Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Rockefeller Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Dixon Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Pepper Wood Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7574 Onsgard Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
683 Scoville Park
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Erie Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
655 Chive Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
623 Carberry Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Nevada Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3897 Oxford Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9468 Vidon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
49 Surrey Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Holy Cross Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Mifflin Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21498 Springs Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
888 Warrior Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50602 Katie Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
463 Merry Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7798 Westport Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6416 Grover Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Stone Corner Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12357 Arapahoe Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
056 Petterle Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4591 Del Sol Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2558 Morningstar Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15566 Waxwing Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Marquette Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Pepper Wood Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Myrtle Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04449 Drewry Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14860 Clove Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65973 Morrow Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Bonner Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
563 Sundown Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Toban Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8551 Mayfield Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6030 South Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7917 Norway Maple Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Coolidge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9398 Declaration Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31601 Birchwood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07803 Dexter Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Hallows Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5718 John Wall Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
011 Lotheville Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Cordelia Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34748 Charing Cross Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2094 Bunting Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Fairview Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4380 Rusk Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Cascade Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8107 Coolidge Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4171 Beilfuss Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48333 Waywood Road
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Golf Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5847 Bunting Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Fisk Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
133 Quincy Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Carioca Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50 Declaration Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Maple Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
402 Clyde Gallagher Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Upham Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6039 Columbus Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6406 Parkside Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Larry Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Sachs Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
873 Ludington Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
518 Donald Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1172 Mesta Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7216 American Ash Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24965 Mitchell Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Eagle Crest Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Tomscot Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
83 Graedel Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Westerfield Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
257 Ruskin Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 North Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59 Coolidge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Nancy Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Donald Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88389 Schiller Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Michigan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Ludington Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
624 Harper Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15991 Saint Paul Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Mayfield Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0421 Anthes Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18118 Maple Wood Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
973 Menomonie Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
282 Monterey Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14 Warbler Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75106 Oriole Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Hermina Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Oxford Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1520 Summerview Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54 Hermina Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3732 Linden Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6043 Badeau Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6933 Leroy Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Homewood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Jackson Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
322 Namekagon Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
411 Anthes Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6956 Clyde Gallagher Park
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12061 Rowland Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21230 Tomscot Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Clemons Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7353 Thierer Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Logan Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8530 Darwin Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Brown Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
736 Ohio Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17 Springs Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29863 Waxwing Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9229 Division Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Morningstar Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45 Talisman Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73 Burrows Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Sachs Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2170 Schiller Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Alpine Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
435 Kennedy Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7330 Helena Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Lillian Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Village Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62551 Del Mar Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
297 Kinsman Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63493 Erie Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Weeping Birch Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Roxbury Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7234 Dawn Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01 Nevada Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
805 Division Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42554 Randy Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25460 Buell Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
000 Boyd Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2782 Stephen Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Charing Cross Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Arapahoe Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
158 Utah Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Magdeline Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Roxbury Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
602 Haas Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40 Sauthoff Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
48 Rockefeller Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59504 Drewry Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Dovetail Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
367 Talmadge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
513 Hauk Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72728 Ruskin Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
024 Onsgard Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
10097 Hooker Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
312 Swallow Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28 Superior Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Weeping Birch Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Northwestern Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
01716 2nd Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0162 Grim Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Eggendart Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
375 Luster Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Monterey Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
851 Meadow Valley Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6851 Orin Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73 Glacier Hill Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59364 Huxley Drive
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Charing Cross Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80269 Southridge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Northland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02181 Starling Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
097 Gulseth Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Ronald Regan Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1351 Lunder Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7181 Dakota Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5767 Thierer Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
687 Almo Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31414 Superior Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Village Green Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Starling Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
182 Thierer Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Barnett Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33792 Burrows Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00283 Loftsgordon Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Garrison Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
618 Chinook Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Ronald Regan Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
40047 Twin Pines Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Anhalt Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3047 Spenser Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Walton Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5356 Ruskin Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
321 Glendale Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6414 Hanover Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
373 Cordelia Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 International Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Warrior Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
989 Waubesa Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
400 Petterle Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Calypso Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Summerview Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9479 Tony Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05988 Sundown Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04036 Kennedy Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Reinke Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Rigney Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0063 Walton Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
672 Crowley Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
59531 Barnett Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Becker Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82591 Fallview Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6691 Lindbergh Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29279 Hazelcrest Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
21 Sugar Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4233 Service Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Stone Corner Avenue
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Kings Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
393 Dexter Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
757 Debs Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
613 Emmet Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8828 North Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Center Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
654 Logan Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Almo Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Reindahl Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
785 Crest Line Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Bowman Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Jackson Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6221 Monica Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 4th Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
682 Claremont Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Weeping Birch Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Maywood Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
176 Sutteridge Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6814 Haas Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Longview Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7279 Steensland Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
06 Lake View Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Michigan Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8863 Maywood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Roxbury Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90 Westerfield Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
416 Hayes Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70980 Washington Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 1st Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54613 Service Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
93 Vera Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Butterfield Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22976 Moose Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8934 Havey Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30011 Manufacturers Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42293 Banding Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Tennyson Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3609 Shelley Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82 Dahle Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2986 Holmberg Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Monument Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Chive Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Dayton Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2565 Caliangt Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96 Delladonna Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Nova Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
310 Stephen Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9491 Green Ridge Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Carberry Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12 Elgar Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8749 Menomonie Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18072 American Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5854 Weeping Birch Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Clarendon Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88979 Hazelcrest Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7555 Springview Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04240 Prentice Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35280 Harper Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08479 Hazelcrest Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70 Oakridge Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56873 Buena Vista Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Rieder Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3528 Granby Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Vahlen Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
977 Arapahoe Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31331 Old Shore Crossing
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51757 Weeping Birch Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Schurz Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92045 Magdeline Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0129 Hollow Ridge Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Anderson Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
528 Golf View Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
474 Farragut Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Schiller Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55497 Warrior Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Moulton Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Rockefeller Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
05759 Ridge Oak Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75 Grim Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Bunting Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7547 Garrison Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3605 Vidon Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0485 Petterle Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
97461 Drewry Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6736 Anthes Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Tennyson Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9594 Brown Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Macpherson Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Heath Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Chive Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34976 Lindbergh Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
266 Little Fleur Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
005 Bunker Hill Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
792 Maple Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Moulton Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
033 Maryland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
360 Green Ridge Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
870 Bluestem Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
392 Grim Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38792 Calypso Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Mallard Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Summerview Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Shasta Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45 Redwing Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Northridge Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
459 Meadow Valley Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
276 Coolidge Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Dexter Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0800 Donald Hill
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4301 Haas Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0185 Fremont Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85476 Shasta Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4888 Hoepker Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
77 Green Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22344 Reinke Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
588 Menomonie Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Becker Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
663 Sunfield Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
010 Maryland Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53504 Dakota Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
681 Ridgeway Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
225 American Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Moland Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9004 Wayridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
505 Village Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57 Thierer Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Roth Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4605 Lakewood Gardens Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16334 Rutledge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
878 Cody Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
66028 Randy Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78478 Pond Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
062 Dixon Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
344 Delladonna Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Union Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33221 Maple Wood Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Esker Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Clyde Gallagher Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5699 Forster Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
94543 Northwestern Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Continental Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Dapin Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38834 Manufacturers Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0186 Thackeray Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15980 Fairview Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Waxwing Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
358 Ronald Regan Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4386 Spaight Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73 Hallows Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1585 Summer Ridge Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
29585 Weeping Birch Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Macpherson Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75132 Portage Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
90969 Talmadge Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Ilene Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
154 Heffernan Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4534 Stone Corner Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Declaration Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Homewood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8279 Golf View Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65769 Hoard Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Havey Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8582 Morrow Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4643 Cambridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Armistice Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23301 Bluestem Drive
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6764 Commercial Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56747 Monument Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Harper Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
422 Valley Edge Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8651 Graceland Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Nobel Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Burning Wood Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Westridge Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9284 Randy Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Sullivan Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Westridge Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Florence Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
897 Forest Dale Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91215 Doe Crossing Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38834 Green Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
678 Monterey Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Park Meadow Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
58 Hoepker Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6415 4th Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5558 Northport Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
71 Manley Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6201 Schiller Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5339 Paget Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26138 Katie Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
686 Scoville Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Bay Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
155 Sunfield Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2809 Anderson Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Barby Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73 Eagan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11 Ryan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Eliot Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4962 Wayridge Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Jenifer Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Macpherson Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5437 Oak Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13854 Artisan Avenue
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7415 Schlimgen Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
249 Merchant Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
379 Scofield Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Michigan Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Packers Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
772 Superior Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15093 Hallows Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
954 Reinke Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
11879 Surrey Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7730 Oakridge Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91051 Cordelia Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32 Larry Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3173 Park Meadow Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
427 Talmadge Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
587 Rieder Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34775 Melrose Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Kennedy Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Upham Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
106 Donald Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3397 Ronald Regan Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2615 Declaration Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
900 Straubel Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4314 Ridgeview Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6001 Calypso Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Declaration Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Grover Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Killdeer Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30122 Union Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Carpenter Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
46 Hollow Ridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6468 West Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Barby Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Rockefeller Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00732 David Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Hagan Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47566 Old Gate Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9738 Delaware Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5511 Clove Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
526 Kipling Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9585 Lakeland Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
19 Daystar Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Union Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88 Service Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
856 Basil Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
00 Esker Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
792 Clyde Gallagher Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9719 Bobwhite Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36 Service Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
51158 Mitchell Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 3rd Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
828 Cascade Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2099 Elmside Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6407 Pierstorff Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Stephen Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5147 Kensington Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7740 Crescent Oaks Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
03742 Granby Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Tennessee Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0616 Messerschmidt Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25 Melvin Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
650 Barby Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
63795 Logan Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
506 Tennyson Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Shasta Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
61 Shoshone Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3241 Rigney Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
65885 Maple Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
310 Cody Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7650 Stone Corner Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6033 Blaine Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
515 Fallview Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
757 International Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Declaration Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Parkside Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73128 Pearson Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1940 Morning Circle
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Chinook Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7912 Jana Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
534 Arrowood Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Butterfield Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
789 Alpine Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4178 Bartelt Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
44 Londonderry Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
712 Sage Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
88987 Dexter Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
52 Helena Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 High Crossing Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
45 Fordem Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
82583 North Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Crescent Oaks Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Utah Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
353 Donald Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Fairfield Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33 Sugar Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
92 Northridge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Algoma Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08261 Aberg Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
549 Randy Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
09295 Judy Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Southridge Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
04 Oakridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20101 Prentice Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
498 Golf Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23 West Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
011 Johnson Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Atwood Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28008 Mesta Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Dixon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31446 5th Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8397 Holy Cross Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85958 Bartillon Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
877 Corben Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Maple Wood Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5304 Oneill Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
884 Packers Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95 East Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9932 Atwood Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1929 Crowley Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
70 West Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Norway Maple Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
54285 Annamark Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
761 Carioca Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69131 Kipling Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3052 Green Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33331 Corry Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
69 Porter Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
934 Dwight Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
27784 Hansons Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
464 Acker Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53533 Dakota Pass
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
546 Summerview Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Carey Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7524 David Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Granby Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8681 Dennis Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Pankratz Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9904 Oakridge Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
249 Anderson Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3463 Merchant Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
699 Hudson Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Dwight Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13 Colorado Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
39946 Kenwood Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72204 Springs Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
365 Jenifer Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
53 Texas Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Morningstar Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6901 Russell Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
26 Barby Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23541 Dayton Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Pine View Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
91 Dennis Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
43 Hollow Ridge Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
045 Debs Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
73 Debra Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
96899 Hermina Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Trailsway Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22171 Bayside Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6011 Knutson Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0127 East Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Fordem Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7681 Waywood Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Donald Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47855 Tomscot Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
394 Russell Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86 Claremont Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Transport Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Susan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
838 Redwing Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 West Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22105 Arrowood Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9240 Green Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0964 Bayside Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9717 Main Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4123 Eliot Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
36708 Algoma Junction
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Mandrake Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Declaration Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57866 Dawn Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0172 Vidon Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
89 Delaware Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34 Packers Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
019 Huxley Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
862 Ilene Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
420 Twin Pines Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5131 Northview Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
713 Redwing Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9570 Sundown Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72258 Bayside Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
31 Melvin Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Duke Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38473 Waubesa Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0056 Corry Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
99476 Mitchell Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Hintze Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
33061 Fremont Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
56 Trailsway Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5748 Porter Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
341 Katie Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20370 Fordem Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
30 Prairie Rose Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
79 Holy Cross Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6489 Pennsylvania Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
274 Bultman Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
832 Moulton Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1628 Bonner Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0618 5th Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4662 Clemons Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Arapahoe Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3748 Lake View Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3720 Anniversary Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85 Trailsway Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
388 Karstens Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Swallow Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80070 Mockingbird Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Veith Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1323 Maywood Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
17504 Spohn Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02084 Rockefeller Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
16 Montana Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Victoria Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0733 Comanche Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75322 Prentice Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Gerald Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2079 Del Sol Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Columbus Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
465 Russell Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
344 Dayton Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Beilfuss Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
78 Barnett Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Emmet Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1728 Springview Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
25413 Delaware Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
23217 Waubesa Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
013 Mendota Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7482 Hanson Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2428 Sloan Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
34329 Heffernan Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15 Duke Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4368 Dayton Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Shasta Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6 Calypso Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Cambridge Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55876 Knutson Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
14 Bunting Alley
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8458 Stang Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Towne Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5 Rutledge Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Blaine Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24688 Hollow Ridge Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
32876 American Ash Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
18 Bay Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Hanover Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Darwin Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5251 Merrick Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
801 Shasta Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
55 Anzinger Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
13768 Commercial Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
109 Kipling Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
47 Spenser Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
15051 Monterey Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7365 Carioca Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
42 Maryland Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
802 Bashford Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
12548 Eagan Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24167 Montana Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Southridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1 Banding Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
259 Union Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7727 Merrick Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3015 Bowman Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2 Annamark Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38 Steensland Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80 Northland Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
104 Kingsford Park
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
22 Mifflin Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60272 Montana Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
730 Judy Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1269 Esch Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
3 Kedzie Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67473 Nova Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
866 Canary Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
20 Dwight Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0900 Northport Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
572 Buena Vista Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
695 Anthes Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
62 Luster Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
819 Basil Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81 Monument Avenue
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
093 Mallard Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
903 Sauthoff Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9796 Pearson Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
950 Algoma Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
28 Toban Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
147 Brickson Park Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
75251 Marquette Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
72 Briar Crest Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
201 Valley Edge Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
6031 Susan Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
724 Erie Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
86906 Hauk Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
85999 Cherokee Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
50774 Dennis Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
64 Trailsway Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
95228 Forster Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
388 Shoshone Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
67 Lakewood Gardens Circle
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
98 Transport Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
35 Larry Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Hooker Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Debra Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
41 Superior Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
721 Morrow Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8578 Mifflin Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
02 Fair Oaks Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
910 Becker Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
08 Dennis Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Express Plaza
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
81609 Vernon Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
37 Hintze Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
07 Morning Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
327 Loeprich Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5106 Northridge Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9754 High Crossing Terrace
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
7 Meadow Vale Court
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
80260 Morning Road
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
38017 Briar Crest Drive
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
60 Morningstar Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
218 Stuart Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Butterfield Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
614 Burning Wood Way
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9 Grover Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
565 Bunting Park
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
9461 Saint Paul Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
5204 Delaware Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
24 Scott Pass
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
8 Randy Parkway
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
681 Elmside Place
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
2918 Summer Ridge Hill
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
613 Erie Lane
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
0 Transport Center
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
4 Dovetail Crossing
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
736 Roxbury Junction
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 Hauk Trail 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
1482 Hauk Trail
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 3064 VIC
3995 4000 57042 Village Green Point 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3 Hauk Trail
3995 6
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
57042 Village Green Point
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 3064 VIC
3995 4000 57042 4511 QLD
3996 4001 87 Crescent Oaks Alley 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3 Hauk Trail
3995 6 Village Green Point
3996 10
3997 7
3998 7
[3999 rows x 6 columns]
87 Crescent Oaks Alley
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 3064 VIC
3995 4000 57042 4511 QLD
3996 4001 87 2756 NSW
3997 4002 8194 Lien Street 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3 Hauk Trail
3995 6 Village Green Point
3996 10 Crescent Oaks Alley
3997 7
3998 7
[3999 rows x 6 columns]
8194 Lien Street
customer_id address postcode state \
0 1 060 2016 New South Wales
1 2 6 2153 New South Wales
2 4 0 4211 QLD
3 5 17979 2448 New South Wales
4 6 9 3216 VIC
... ... ... ... ...
3994 3999 1482 3064 VIC
3995 4000 57042 4511 QLD
3996 4001 87 2756 NSW
3997 4002 8194 4032 QLD
3998 4003 320 Acker Drive 2251 NSW
property_valuation street
0 10 Morning Avenue
1 10 Meadow Vale Court
2 9 Holy Cross Court
3 4 Del Mar Point
4 9 Oakridge Court
... ... ...
3994 3 Hauk Trail
3995 6 Village Green Point
3996 10 Crescent Oaks Alley
3997 7 Lien Street
3998 7
[3999 rows x 6 columns]
320 Acker Drive
customer_id address postcode state property_valuation \
0 1 060 2016 New South Wales 10
1 2 6 2153 New South Wales 10
2 4 0 4211 QLD 9
3 5 17979 2448 New South Wales 4
4 6 9 3216 VIC 9
... ... ... ... ... ...
3994 3999 1482 3064 VIC 3
3995 4000 57042 4511 QLD 6
3996 4001 87 2756 NSW 10
3997 4002 8194 4032 QLD 7
3998 4003 320 2251 NSW 7
street
0 Morning Avenue
1 Meadow Vale Court
2 Holy Cross Court
3 Del Mar Point
4 Oakridge Court
... ...
3994 Hauk Trail
3995 Village Green Point
3996 Crescent Oaks Alley
3997 Lien Street
3998 Acker Drive
[3999 rows x 6 columns]
C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:5: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['address'][j] = data[0] C:\Users\LAPTRONICS\AppData\Local\Temp\ipykernel_1384\1744110462.py:6: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy ca['street'][j] = data[1]
ca
| customer_id | address | postcode | state | property_valuation | street | |
|---|---|---|---|---|---|---|
| 0 | 1 | 060 | 2016 | New South Wales | 10 | Morning Avenue |
| 1 | 2 | 6 | 2153 | New South Wales | 10 | Meadow Vale Court |
| 2 | 4 | 0 | 4211 | QLD | 9 | Holy Cross Court |
| 3 | 5 | 17979 | 2448 | New South Wales | 4 | Del Mar Point |
| 4 | 6 | 9 | 3216 | VIC | 9 | Oakridge Court |
| ... | ... | ... | ... | ... | ... | ... |
| 3994 | 3999 | 1482 | 3064 | VIC | 3 | Hauk Trail |
| 3995 | 4000 | 57042 | 4511 | QLD | 6 | Village Green Point |
| 3996 | 4001 | 87 | 2756 | NSW | 10 | Crescent Oaks Alley |
| 3997 | 4002 | 8194 | 4032 | QLD | 7 | Lien Street |
| 3998 | 4003 | 320 | 2251 | NSW | 7 | Acker Drive |
3999 rows × 6 columns
ca.rename(columns = {'address':'Street_no'}, inplace = True)
ca.columns
Index(['customer_id', 'Street_no', 'postcode', 'state', 'property_valuation',
'street'],
dtype='object')
ca
| customer_id | Street_no | postcode | state | property_valuation | street | |
|---|---|---|---|---|---|---|
| 0 | 1 | 060 | 2016 | New South Wales | 10 | Morning Avenue |
| 1 | 2 | 6 | 2153 | New South Wales | 10 | Meadow Vale Court |
| 2 | 4 | 0 | 4211 | QLD | 9 | Holy Cross Court |
| 3 | 5 | 17979 | 2448 | New South Wales | 4 | Del Mar Point |
| 4 | 6 | 9 | 3216 | VIC | 9 | Oakridge Court |
| ... | ... | ... | ... | ... | ... | ... |
| 3994 | 3999 | 1482 | 3064 | VIC | 3 | Hauk Trail |
| 3995 | 4000 | 57042 | 4511 | QLD | 6 | Village Green Point |
| 3996 | 4001 | 87 | 2756 | NSW | 10 | Crescent Oaks Alley |
| 3997 | 4002 | 8194 | 4032 | QLD | 7 | Lien Street |
| 3998 | 4003 | 320 | 2251 | NSW | 7 | Acker Drive |
3999 rows × 6 columns
sns.countplot(x= ca['state'], data=ca)
<AxesSubplot: xlabel='state', ylabel='count'>
sns.countplot(x= ca['property_valuation'], data=ca)
plt.xticks(rotation='vertical')
plt.show()
sns.catplot(x= "state", y = "property_valuation", data =ca, kind = "box",aspect = 1.5)
plt.xticks(rotation='vertical')
plt.title("boxplot for state vs property_valuation")
plt.show()